home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _54DCC17963EB469093F083F412DBF91C < prev    next >
Encoding:
Text File  |  2006-08-04  |  482 b   |  23 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Erich Tran',
  6.         'Copyright': u'',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_ColorAdjustRGB():
  13.     return {
  14.         'Blue': -10, 
  15.         'Green': 20, 
  16.         'Red': 40
  17.         }
  18.  
  19. def Do(Environment):
  20.     # Color Adjust RGB
  21.     App.Do( Environment, 'ColorAdjustRGB',         Preset_ColorAdjustRGB())
  22.  
  23.